home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0195.lzh / AMOSLIST / text0115.txt < prev    next >
Encoding:
Text File  |  1995-02-01  |  1.1 KB  |  43 lines

  1.  
  2.     Mike,
  3.  
  4. >     Okay my brain is starting to bleed because I can't make up my 
  5. > mind on a consistent interface for MARP so I thought I would ask what
  6. > you blokes thought would be best....
  7. >     1. Do you like how with Amos you have to 'Set' which object
  8. >        you want the operations to be applied to ?
  9. >         Example:
  10. >             Screen 1 : Circle 10,10,10 : Screen 0
  11. >     2. Or would rather wnat to specify the object along with the
  12. >        operation ?
  13. >         Example:
  14. >             Circle 1,10,10,10
  15. >     I realise that their are advantages and disadvantages to both and
  16. >     this is what is causing my brain problems!
  17.  
  18.   If you want to draw 100 random circles using the AMOS methodlogy,
  19.   the screen 1 command is only executed once.
  20.  
  21.                  screen 1 
  22.                  for i= 1 to 100
  23.                   circle rnd(319),rnd(199),rnd(15)
  24.                  next i
  25.                  screen 0
  26.  
  27.  The other way is too inflexible and can lead to inefficient behaviour,
  28.  and probably will interfere with other programming techniques.  
  29.  
  30.  F. Lionet is no dummy.
  31.  
  32.                                                 clayton
  33.  
  34.  
  35.